home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 1998 November / IRIX 6.5.2 Base Documentation November 1998.img / usr / share / catman / u_man / cat1 / awk.z / awk
Text File  |  1998-10-30  |  21KB  |  462 lines

  1.  
  2.  
  3.  
  4. aaaawwwwkkkk((((1111))))                                                                  aaaawwwwkkkk((((1111))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      aaaawwwwkkkk, nnnnaaaawwwwkkkk, ppppaaaawwwwkkkk  - pattern scanning and processing language
  10.  
  11. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  12.      aaaawwwwkkkk [----FFFF _r_e] [----vvvv _v_a_r=_v_a_l_u_e] [''''_p_r_o_g''''] [_f_i_l_e. . .]
  13.      aaaawwwwkkkk [----FFFF _r_e] [----vvvv _v_a_r=_v_a_l_u_e] [----ffff _p_r_o_g_f_i_l_e] [_f_i_l_e. . .]
  14.  
  15. DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
  16.      NNNNOOOOTTTTEEEE:::: This version of awk has some incompatibilities with previous
  17.      versions. See the COMPATIBILITY ISSUES section below for more detail.
  18.  
  19.      aaaawwwwkkkk and nnnnaaaawwwwkkkk use the old rrrreeeeggggeeeexxxxpppp(((()))) and ccccoooommmmppppiiiilllleeee(((()))) regular expression
  20.      routines.  When the environment variable ____XXXXPPPPGGGG is equal to 1111 (one), ppppaaaawwwwkkkk
  21.      is exec'ed which uses the newer rrrreeeeggggccccoooommmmpppp(((()))) and rrrreeeeggggeeeexxxxeeeecccc(((()))) routines which
  22.      implement the Extended Regular Expression package.
  23.  
  24.      aaaawwwwkkkk scans each input _f_i_l_e for lines that match any of a set of patterns
  25.      specified in _p_r_o_g.  The _p_r_o_g string must be enclosed in single quotes ('''')
  26.      to protect it from the shell.  Patterns are arbitrary Boolean
  27.      combinations of regular expressions and relational expressions.  For each
  28.      pattern in _p_r_o_g there may be an associated action performed when a line
  29.      of a _f_i_l_e matches the pattern.  The set of pattern-action statements may
  30.      appear literally as _p_r_o_g or in a file specified with the ----ffff _p_r_o_g_f_i_l_e
  31.      option.  Input files are read in order; if there are no files, the
  32.      standard input is read.  The file name ---- means the standard input.
  33.  
  34.      aaaawwwwkkkk processes supplementary code set characters in pattern-action
  35.      statements and comments, and recognizes supplementary code set characters
  36.      as field separators (see below) according to the locale specified in the
  37.      LLLLCCCC____CCCCTTTTYYYYPPPPEEEE environment variable [see LLLLAAAANNNNGGGG on eeeennnnvvvviiiirrrroooonnnn(5)].  In regular
  38.      expressions, pattern searches are performed on characters, not bytes, as
  39.      described on eeeedddd(1).
  40.  
  41.      Each input line is matched against the pattern portion of every pattern-
  42.      action statement; the associated action is performed for each matched
  43.      pattern.  Any _f_i_l_e of the form vvvvaaaarrrr=_v_a_l_u_e is treated as an assignment, not
  44.      a filename, and is executed at the time it would have been opened if it
  45.      were a filename.  The option ----vvvv followed by vvvvaaaarrrr=_v_a_l_u_e is an assignment to
  46.      be done before _p_r_o_g is executed; any number of ----vvvv options may be present.
  47.  
  48.      An input line is normally made up of fields separated by white space.
  49.      (This default can be changed by using the FFFFSSSS built-in variable or the ----FFFF
  50.      _r_e option.)  The fields are denoted $$$$1111, $$$$2222, ...; $$$$0000 refers to the entire
  51.      line.
  52.  
  53.      A pattern-action statement has the form:
  54.  
  55.           _p_a_t_t_e_r_n {{{{ _a_c_t_i_o_n }}}}
  56.  
  57.      Either pattern or action may be omitted.  If there is no action with a
  58.      pattern, the matching line is printed.  If there is no pattern with an
  59.      action, the action is performed on every input line.  Pattern-action
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. aaaawwwwkkkk((((1111))))                                                                  aaaawwwwkkkk((((1111))))
  71.  
  72.  
  73.  
  74.      statements are separated by newlines or semicolons.
  75.  
  76.      As noted, patterns are arbitrary Boolean combinations ( !!!!, ||, &&&&&&&&, and
  77.      parentheses) of relational expressions and regular expressions.  A
  78.      relational expression is one of the following:
  79.  
  80.           _e_x_p_r_e_s_s_i_o_n _r_e_l_o_p _e_x_p_r_e_s_s_i_o_n
  81.           _e_x_p_r_e_s_s_i_o_n _m_a_t_c_h_o_p _r_e_g_u_l_a_r__e_x_p_r_e_s_s_i_o_n
  82.           _e_x_p_r_e_s_s_i_o_n iiiinnnn _a_r_r_a_y-_n_a_m_e
  83.           ((((_e_x_p_r_e_s_s_i_o_n,,,,_e_x_p_r_e_s_s_i_o_n,,,, ...  )))) iiiinnnn _a_r_r_a_y-_n_a_m_e
  84.  
  85.      where a _r_e_l_o_p is any of the six relational operators in C, and a _m_a_t_c_h_o_p
  86.      is either ~~~~ (contains) or !!!!~~~~ (does not contain).  An _e_x_p_r_e_s_s_i_o_n is an
  87.      arithmetic expression, a relational expression, the special expression
  88.  
  89.           _v_a_r iiiinnnn _a_r_r_a_y
  90.  
  91.      or a Boolean combination of these.
  92.  
  93.      Regular expressions are as in eeeeggggrrrreeeepppp(1).  In patterns they must be
  94.      surrounded by slashes.  Isolated regular expressions in a pattern apply
  95.      to the entire line.  Regular expressions may also occur in relational
  96.      expressions.  A pattern may consist of two patterns separated by a comma;
  97.      in this case, the action is performed for all lines between an occurrence
  98.      of the first pattern and the next occurrence of the second pattern.
  99.  
  100.      The special patterns BBBBEEEEGGGGIIIINNNN and EEEENNNNDDDD may be used to capture control before
  101.      the first input line has been read and after the last input line has been
  102.      read respectively.  These keywords do not combine with any other
  103.      patterns.
  104.  
  105.      A regular expression may be used to separate fields by using the ----FFFF _r_e
  106.      option or by assigning the expression to the built-in variable FS.  The
  107.      default is to ignore leading blanks and to separate fields by blanks
  108.      and/or tab characters.  However, if FS is assigned a value, leading
  109.      blanks are no longer ignored.
  110.  
  111.      Other built-in variables include:
  112.  
  113.           AAAARRRRGGGGCCCC            command line argument count
  114.  
  115.           AAAARRRRGGGGVVVV            command line argument array
  116.  
  117.           EEEENNNNVVVVIIIIRRRROOOONNNN         array of environment variables; subscripts are names
  118.  
  119.           FFFFIIIILLLLEEEENNNNAAAAMMMMEEEE        name of the current input file
  120.  
  121.           FFFFNNNNRRRR             ordinal number of the current record in the current
  122.                           file
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136. aaaawwwwkkkk((((1111))))                                                                  aaaawwwwkkkk((((1111))))
  137.  
  138.  
  139.  
  140.           FFFFSSSS              input field separator regular expression (default
  141.                           blank and tab)
  142.  
  143.           NNNNFFFF              number of fields in the current record
  144.  
  145.           NNNNRRRR              ordinal number of the current record
  146.  
  147.           OOOOFFFFMMMMTTTT            output format for numbers (default %%%%....6666gggg)
  148.  
  149.           OOOOFFFFSSSS             output field separator (default blank)
  150.  
  151.           OOOORRRRSSSS             output record separator (default new-line)
  152.  
  153.           RRRRSSSS              input record separator (default new-line)
  154.  
  155.           SSSSUUUUBBBBSSSSEEEEPPPP          separates multiple subscripts (default is 034)
  156.  
  157.      The field separators specified with the ----FFFF option or with the variables
  158.      OOOOFFFFSSSS, OOOORRRRSSSS, and FFFFSSSS may be supplementary code set characters.
  159.  
  160.      An action is a sequence of statements.  A statement may be one of the
  161.      following:
  162.  
  163.           iiiiffff ( _e_x_p_r_e_s_s_i_o_n ) _s_t_a_t_e_m_e_n_t [ eeeellllsssseeee _s_t_a_t_e_m_e_n_t ]
  164.           wwwwhhhhiiiilllleeee ( _e_x_p_r_e_s_s_i_o_n ) _s_t_a_t_e_m_e_n_t
  165.           ddddoooo _s_t_a_t_e_m_e_n_t wwwwhhhhiiiilllleeee ( _e_x_p_r_e_s_s_i_o_n )
  166.           ffffoooorrrr ( _e_x_p_r_e_s_s_i_o_n ; _e_x_p_r_e_s_s_i_o_n ; _e_x_p_r_e_s_s_i_o_n ) _s_t_a_t_e_m_e_n_t
  167.           ffffoooorrrr ( _v_a_r iiiinnnn _a_r_r_a_y ) _s_t_a_t_e_m_e_n_t
  168.           ddddeeeelllleeeetttteeee _a_r_r_a_y[_s_u_b_s_c_r_i_p_t] #delete an array element
  169.           bbbbrrrreeeeaaaakkkk
  170.           ccccoooonnnnttttiiiinnnnuuuueeee
  171.           { [ _s_t_a_t_e_m_e_n_t ] ... }
  172.           _e_x_p_r_e_s_s_i_o_n     # commonly variable = expression
  173.           pppprrrriiiinnnntttt [ _e_x_p_r_e_s_s_i_o_n-_l_i_s_t ] [ >_e_x_p_r_e_s_s_i_o_n ]
  174.           pppprrrriiiinnnnttttffff _f_o_r_m_a_t [ , _e_x_p_r_e_s_s_i_o_n-_l_i_s_t ] [ >_e_x_p_r_e_s_s_i_o_n ]
  175.           nnnneeeexxxxtttt      # skip remaining patterns on this input line
  176.           eeeexxxxiiiitttt [eeeexxxxpppprrrr]    # skip the rest of the input; exit status is expr
  177.           rrrreeeettttuuuurrrrnnnn [eeeexxxxpppprrrr]
  178.  
  179.      Statements are terminated by semicolons, new-lines, or right braces.  An
  180.      empty expression-list stands for the whole input line.  Expressions take
  181.      on string or numeric values as appropriate, and are built using the
  182.      operators ++++, ----, ****, ////, %%%%, ^^^^ and concatenation (indicated by a blank).  The
  183.      operators ++++++++ -------- ++++==== ----==== ****==== ////==== %%%%==== ^^^^==== >>>> >>>>==== <<<< <<<<==== ======== !!!!==== ????::::  are also available
  184.      in expressions.  Variables may be scalars, array elements (denoted x[i]),
  185.      or fields.  Variables are initialized to the null string or zero.  Array
  186.      subscripts may be any string, not necessarily numeric; this allows for a
  187.      form of associative memory.  Multiple subscripts such as [[[[iiii,,,,jjjj,,,,kkkk]]]] are
  188.      permitted; the constituents are concatenated, separated by the value of
  189.      SSSSUUUUBBBBSSSSEEEEPPPP.  String constants are quoted (""""""""), with the usual C escapes
  190.      recognized within.
  191.  
  192.  
  193.  
  194.  
  195.                                                                         PPPPaaaaggggeeee 3333
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202. aaaawwwwkkkk((((1111))))                                                                  aaaawwwwkkkk((((1111))))
  203.  
  204.  
  205.  
  206.      A comment consists of any characters beginning with the number sign
  207.      character and terminated by, but excluding the next occurrence of, a
  208.      newline character. Comments will have no effect, except to delimit
  209.      statements.
  210.  
  211.      The pppprrrriiiinnnntttt statement prints its arguments on the standard output, or on a
  212.      file if >>>>_e_x_p_r_e_s_s_i_o_n is present, or on a pipe if | _c_m_d is present.  The
  213.      arguments are separated by the current output field separator and
  214.      terminated by the output record separator.  The pppprrrriiiinnnnttttffff statement formats
  215.      its expression list according to the format (see pppprrrriiiinnnnttttffff(3S)).  The
  216.      built-in function cccclllloooosssseeee(_e_x_p_r) closes the file or pipe _e_x_p_r.
  217.  
  218.      The mathematical functions:  aaaattttaaaannnn2222, ccccoooossss, eeeexxxxpppp, lllloooogggg, ssssiiiinnnn, ssssqqqqrrrrtttt, are built-
  219.      in.
  220.  
  221.      Other built-in functions include:
  222.  
  223.      ggggssssuuuubbbb(_f_o_r, _r_e_p_l, _i_n)
  224.                behaves like ssssuuuubbbb (see below), except that it replaces
  225.                successive occurrences of the regular expression (like the eeeedddd
  226.                global substitute command).
  227.  
  228.      iiiinnnnddddeeeexxxx((((_s,,,, _t))))
  229.                returns the position in string _s where string _t first occurs,
  230.                or 0 if it does not occur at all.
  231.  
  232.      iiiinnnntttt       truncates to an integer value.
  233.  
  234.      lllleeeennnnggggtttthhhh((((_s)))) returns the length in bytes of its argument taken as a string,
  235.                or of the whole line if there is no argument.
  236.  
  237.      mmmmaaaattttcccchhhh((((_s,,,, _r_e))))
  238.                returns the position in string _s where the regular expression
  239.                _r_e occurs, or 0 if it does not occur at all.  RRRRSSSSTTTTAAAARRRRTTTT is set to
  240.                the starting position (which is the same as the returned
  241.                value), and RRRRLLLLEEEENNNNGGGGTTTTHHHH is set to the length of the matched string.
  242.  
  243.      rrrraaaannnndddd      random number on (0, 1).
  244.  
  245.      sssspppplllliiiitttt((((_s,,,, _a,,,, _f_s))))
  246.                splits the string _s into array elements _a[_1], _a[_2], _a[_n], and
  247.                returns _n.  The separation is done with the regular expression
  248.                _f_s or with the field separator FFFFSSSS if _f_s is not given.
  249.  
  250.      ssssrrrraaaannnndddd     sets the seed for rrrraaaannnndddd
  251.  
  252.      sssspppprrrriiiinnnnttttffff((((_f_m_t,,,, _e_x_p_r,,,, _e_x_p_r,,,,...))))
  253.                formats the expressions according to the pppprrrriiiinnnnttttffff(3S) format
  254.                given by _f_m_t and returns the resulting string.
  255.  
  256.  
  257.  
  258.  
  259.  
  260.  
  261.                                                                         PPPPaaaaggggeeee 4444
  262.  
  263.  
  264.  
  265.  
  266.  
  267.  
  268. aaaawwwwkkkk((((1111))))                                                                  aaaawwwwkkkk((((1111))))
  269.  
  270.  
  271.  
  272.      ssssuuuubbbb(_f_o_r, _r_e_p_l, _i_n)
  273.                substitutes the string _r_e_p_l in place of the first instance of
  274.                the regular expression _f_o_r in string _i_n and returns the number
  275.                of substitutions.  If _i_n is omitted, aaaawwwwkkkk substitutes in the
  276.                current record ($$$$0000).
  277.  
  278.      ssssuuuubbbbssssttttrrrr(_s, _m, _n)
  279.                returns the _n-byte substring of _s that begins at position _m.
  280.  
  281.      ttttoooolllloooowwwweeeerrrr(_s)
  282.                converts all upper-case alphabetic characters in string _s to
  283.                lower-case.  Numbers and other characters are not affected.
  284.  
  285.      ttttoooouuuuppppppppeeeerrrr(_s)
  286.                converts all lower-case alphabetic characters in string _s to
  287.                upper-case. Numbers and other characters are not affected.
  288.  
  289.  
  290.      The input/output built-in functions are:
  291.  
  292.      cccclllloooosssseeee((((_f_i_l_e_n_a_m_e))))
  293.                closes the file or pipe named _f_i_l_e_n_a_m_e.
  294.  
  295.      _c_m_d |||| ggggeeeettttlllliiiinnnneeee
  296.                pipes the output of _c_m_d into ggggeeeettttlllliiiinnnneeee; each successive call to
  297.                _g_e_t_l_i_n_e returns the next line of output from _c_m_d.
  298.  
  299.      ggggeeeettttlllliiiinnnneeee   sets $$$$0000 to the next input record from the current input file.
  300.  
  301.      ggggeeeettttlllliiiinnnneeee <<<<_f_i_l_e
  302.                sets $$$$0000 to the next record from _f_i_l_e.
  303.  
  304.      ggggeeeettttlllliiiinnnneeee _x sets variable _x instead.
  305.  
  306.      ggggeeeettttlllliiiinnnneeee _x <<<<_f_i_l_e
  307.                sets _x from the next record of _f_i_l_e.
  308.  
  309.      ssssyyyysssstttteeeemmmm((((_c_m_d))))
  310.                executes _c_m_d and returns its exit status.
  311.  
  312.      All forms of ggggeeeettttlllliiiinnnneeee return 1 for successful input, 0 for end of file,
  313.      and -1 for an error.
  314.  
  315.      aaaawwwwkkkk also provides user-defined functions.  Such functions may be defined
  316.      (in the pattern position of a pattern-action statement) as
  317.  
  318.           _ffff_uuuu_nnnn_cccc_tttt_iiii_oooo_nnnn _n_a_m_e_((((_a_r_g_s_,,,,..._)))) _{{{{ _s_t_m_t_s _}}}}
  319.  
  320.      Function arguments are passed by value if scalar and by reference if
  321.      array name.  Argument names are local to the function; all other variable
  322.      names are global.  Function calls may be nested and functions may be
  323.      recursive.  The rrrreeeettttuuuurrrrnnnn statement may be used to return a value.
  324.  
  325.  
  326.  
  327.                                                                         PPPPaaaaggggeeee 5555
  328.  
  329.  
  330.  
  331.  
  332.  
  333.  
  334. aaaawwwwkkkk((((1111))))                                                                  aaaawwwwkkkk((((1111))))
  335.  
  336.  
  337.  
  338. EEEEXXXXAAAAMMMMPPPPLLLLEEEESSSS
  339.      Print lines longer than 72 characters:
  340.  
  341.           length > 72
  342.  
  343.      Print first two fields in opposite order:
  344.  
  345.           { print $2, $1 }
  346.  
  347.      Same, with input fields separated by comma and/or blanks and tabs:
  348.      BEGIN { FS = ",[ \t]*|[ \t]+" }
  349.      { print $2, $1 }
  350.  
  351.  
  352.      Add up first column, print sum and average:
  353.  
  354.           { s += $1 }
  355.           END { print "sum is", s, " average is", s/NR }
  356.  
  357.      Print fields in reverse order:
  358.  
  359.           { for (i = NF; i > 0; --i) print $i }
  360.  
  361.      Print all lines between start/stop pairs:
  362.  
  363.           /start/, /stop/
  364.  
  365.      Print all lines whose first field is different from previous one:
  366.  
  367.           $1 != prev { print; prev = $1 }
  368.  
  369.      Simulate eeeecccchhhhoooo(1):
  370.  
  371.           BEGIN {
  372.                for (i = 1; i < ARGC; i++)
  373.                     printf "%s", ARGV[i]
  374.                printf "\n"
  375.                exit
  376.           }
  377.  
  378.      Print a file, filling in page numbers starting at 5:
  379.  
  380.           /Page/ { $2 = n++; }
  381.           { print }
  382.  
  383.      Assuming this program is in a file named pppprrrroooogggg, the following command line
  384.      prints the file iiiinnnnppppuuuutttt numbering its pages starting at 5:  awk -f prog n=5
  385.      input.
  386.  
  387.  
  388.  
  389.  
  390.  
  391.                                                                         PPPPaaaaggggeeee 6666
  392.  
  393.  
  394.  
  395.  
  396.  
  397.  
  398. aaaawwwwkkkk((((1111))))                                                                  aaaawwwwkkkk((((1111))))
  399.  
  400.  
  401.  
  402. FFFFIIIILLLLEEEESSSS
  403.      /usr/lib/locale/locale/LC_MESSAGES/uxawk
  404.           language-specific message file (see LLLLAAAANNNNGGGG on eeeennnnvvvviiiirrrroooonnnn(5))
  405.  
  406. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  407.      ooooaaaawwwwkkkk(1), eeeeggggrrrreeeepppp(1), ggggrrrreeeepppp(1), lllleeeexxxx(1), ppppeeeerrrrllll(1), sssseeeedddd(1), pppprrrriiiinnnnttttffff(3S)
  408.      A. V. Aho, B. W. Kernighan, P. J. Weinberger, _T_h_e _a_w_k _P_r_o_g_r_a_m_m_i_n_g
  409.      _L_a_n_g_u_a_g_e Addison-Wesley, 1988
  410.  
  411. NNNNOOOOTTTTEEEESSSS aaaannnndddd CCCCOOOOMMMMPPPPAAAATTTTIIIIBBBBIIIILLLLIIIITTTTYYYY IIIISSSSSSSSUUUUEEEESSSS
  412.      aaaawwwwkkkk is a newer version that provides capabilities unavailable in previous
  413.      versions.  See ooooaaaawwwwkkkk(1) for the older version.
  414.  
  415.      Input white space is not preserved on output if fields are involved.
  416.  
  417.      There are no explicit conversions between numbers and strings.  To force
  418.      an expression to be treated as a number add 0 to it; to force it to be
  419.      treated as a string concatenate the null string ("""""""") to it.
  420.  
  421.      The following regular expressions are no longer accepted:
  422.  
  423.          ////[[[[]]]]////     ////[[[[^^^^]]]]////      ////[[[[\\\\]]]]]]]]////
  424.  
  425.  
  426.  
  427.  
  428.  
  429.  
  430.  
  431.  
  432.  
  433.  
  434.  
  435.  
  436.  
  437.  
  438.  
  439.  
  440.  
  441.  
  442.  
  443.  
  444.  
  445.  
  446.  
  447.  
  448.  
  449.  
  450.  
  451.  
  452.  
  453.  
  454.  
  455.  
  456.  
  457.                                                                         PPPPaaaaggggeeee 7777
  458.  
  459.  
  460.  
  461.